/* expecificações gerais*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff; 
  color: #181818;
}
/* Header*/
header {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 40px 20px 30px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
header img {
    display: flex;
  width: 150px;
  position: absolute;
  left: 20px;
  top: 20px;
}

header h1 {
  margin: 10px 0 5px 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

header p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.voltar {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 28px;
  background: #181818;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.voltar:hover {
  background: white;
  color: #000000;
}
/*-------------------------------------------------------------------*/

/*menbros*/
main {
  max-width: 1400px; 
  margin: 40px auto;
  padding: 0 20px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border: 2px solid #000000;
  padding: 32px 24px 24px 24px;
  text-align: center;
  width: 320px; 
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: #181818;
  margin-bottom: 0; 
}

.member:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.member img {
  width: 180px;     
  height: 180px;    
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin-bottom: 18px;
  transition: border-color 0.2s;
  background: #eee;
}


.member h2 {
  margin: 10px 0 4px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #181818;
}

.member h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #181818;
}

.member p {
  font-size: 1.18rem; 
  color: #222;
  margin: 0;
}

.github{
  display: inline-block;
  margin-top: 18px;
  padding: 10px 28px;
  background: #fff;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.377);
  transition-duration: 1s;
}
.githubzezin{
  display: inline-block;
  margin-top: 41px;
  margin-bottom: -24px;
  padding: 10px 28px;
  background: #fff;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.377);
  transition-duration: 1s;
}

.github:hover, .githubzezin:hover { 
  box-shadow: 5px 5px 10px #000000;
}
/* responsividade*/

@media (max-width: 900px) {
  .team {
    flex-direction: column;
    align-items: center;
    margin-right: 17px;
  }
  .member {
    width: 90%;
    margin-bottom: 24px;
  }
  header img {
display: none;

  }
}

